home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 176-200 / 190 / nethack / een.zoo / spell.h < prev    next >
C/C++ Source or Header  |  1988-07-01  |  330b  |  19 lines

  1. /*    SCCS Id: @(#)spell.h    2.1    87/10/18
  2. /* M. Stephenson  07-07-86 */
  3.  
  4. #ifndef SPELL_H
  5. #define SPELL_H
  6.  
  7. struct      spell  {
  8.  
  9.     int    sp_id;        /* spell id */
  10.     int    sp_lev;        /* power level */
  11.     int    sp_flags;        /* spfx flags */
  12. #ifdef HARD
  13.     int     sp_uses;        /* uses left to spell */
  14. #endif
  15. };
  16.  
  17.  
  18. #endif
  19.